Сохраненная страница Fixing Poll Module's 128 Character Limit | GiveGoodWeb (18 Kb)
Изменить длинну заголовка опроса с 128, до 255 символов.
Fortunately, the solution is simple. Open up poll.module, look for the function called poll_form(), and add '#maxlength' => 255 to the $form['title'] array:
$form['title'] = array(
'#type' => 'textfield',
'#title' => check_plain($type->title_label),
'#required' => TRUE,
'#default_value' => $node->title,
'#weight' => -5,
'#maxlength' => 255,
);